Skip to content

Commit

Permalink
version 1.2 + fixed typos
Browse files Browse the repository at this point in the history
  • Loading branch information
James Mendel committed Aug 14, 2020
1 parent af91aec commit e1c1bc2
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 4 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ Chrome:
1. Extension now available at Chrome Web Store! Pick it up [here](https://chrome.google.com/webstore/detail/ku-search-ratemyprofessor/fcbcjgfbgnnjkokdmgdbmlibeakmalgi/)

* Manually:
1. Download lastest release (`.zip`) from [Releases](https://github.com/jamesmendel/ku-rmp/releases/)
1. Download latest release (`.zip`) from [Releases](https://github.com/jamesmendel/ku-rmp/releases/)
2. Extract to folder
3. Open Chrome and navigate to the url `chrome://extensions`
4. Enable Developer mode (top right corner)
Expand All @@ -36,7 +36,7 @@ In Firefox:
# How to build
Using `web-ext` (`npm i --global web-ext`):

1. Clone this repositority (`git clone https://github.com/jamesmendel/ku-rmp.git`)
1. Clone this repository (`git clone https://github.com/jamesmendel/ku-rmp.git`)
2. `cd` into the root
3. Run `web-ext build`
4. A new folder called `web-ext-artifacts` should contain the compiled project in a .zip
Expand Down
2 changes: 1 addition & 1 deletion app.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
(function kuRMP() {
var manifest = chrome.runtime.getManifest()
console.log(`%c ${manifest.name}`, 'font-weight: bold; font-size: 50px;color: #e8000d; text-shadow: 3px 3px 0 white , 6px 6px 0 #0051ba');
console.log(`\tLoaded Extention: ${manifest.name} ~ Version ${manifest.version}\n\tBy ${manifest.author} - ${manifest.homepage_url}`);
console.log(`\tLoaded Extension: ${manifest.name} ~ Version ${manifest.version}\n\tBy ${manifest.author} - ${manifest.homepage_url}`);

var script = document.createElement('script');
script.type = 'text/javascript';
Expand Down
2 changes: 1 addition & 1 deletion manifest.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"manifest_version": 2,
"name": "KU | Search RateMyProfessors",
"version": "1.1.1",
"version": "1.2",

"author": "James Mendel",
"homepage_url": "https://jamesmendel.github.io",
Expand Down
4 changes: 4 additions & 0 deletions update-manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,10 @@
{
"version": "1.1.1",
"update_link": "https://github.com/jamesmendel/ku-rmp/releases/download/v1.1.1/ku_search_ratemyprofessors-1.1.1-an+fx.xpi"
},
{
"version": "1.2",
"update_link": "https://github.com/jamesmendel/ku-rmp/releases/download/v1.2/ku_search_ratemyprofessors-1.2-an+fx.xpi"
}
]
}
Expand Down

0 comments on commit e1c1bc2

Please sign in to comment.