Skip to content

Commit

Permalink
Bump version to 1.6
Browse files Browse the repository at this point in the history
  • Loading branch information
krlvm committed Aug 3, 2021
1 parent ce51488 commit 9cc5bb2
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
8 changes: 4 additions & 4 deletions BeautySearch.js
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@
* Licensed under the GNU GPLv3 License
* https://github.com/krlvm/BeautySearch
*
* @version 1.5.1
* @version 1.6
* @author krlvm
**/

Expand Down Expand Up @@ -71,8 +71,8 @@
// Use defaults if the script is injected manually
const SETTINGS = SETTINGS_DEFAULTS;

const VERSION = '1.5';
const VERSION_CODE = 11;
const VERSION = '1.6';
const VERSION_CODE = 12;

console.log('BeautySearch v' + VERSION + ' is loaded');

Expand Down Expand Up @@ -112,7 +112,7 @@ const executeOnRestyle = (callback, condition) => {
executeOnLoad(callback);
return;
}
window.addEventListener('load', () => setTimeout(callback, 50));
window.addEventListener('load', () => setTimeout(callback, 100));
if(SETTINGS.useController) {
awaitController(controller => controller.bindAccentColorAndThemeRefreshed(callback));
} else {
Expand Down
4 changes: 2 additions & 2 deletions Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -32,5 +32,5 @@
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("1.5.1.0")]
[assembly: AssemblyFileVersion("1.5.1.0")]
[assembly: AssemblyVersion("1.6.0.0")]
[assembly: AssemblyFileVersion("1.6.0.0")]

0 comments on commit 9cc5bb2

Please sign in to comment.